home *** CD-ROM | disk | FTP | other *** search
- echo off
- cls
- echo Beginning installation. Please wait . . .
- :disk1
- echo Make certain disk containing REALVIEW.001 and VENDOR.DOC is in Drive A.
- pause
- if not exist a:realview.001 goto disk1
- if not exist a:vendor.doc goto disk1
- echo Copying DISK1 to default drive . . .
- copy a:realview.001
- copy a:vendor.doc
- :disk2
- echo Please insert disk containing REALVIEW.002 in Drive A.
- pause
- if not exist a:realview.002 goto disk2
- echo Copying DISK2 to default drive . . .
- copy a:realview.002
- :disk3
- echo Please insert disk containing REALVIEW.003 in Drive A.
- pause
- if not exist a:realview.003 goto disk3
- cls
- echo Do NOT remove the diskette from Drive A yet!
- echo Reconstructing RealView archive for installation . . .
- copy /b realview.001 + realview.002 + a:realview.003 realview.exe
- del realview.0*
- realview
- del realview.exe
- echo Installation completed.
- echo You may remove the disk from Drive A at this time.
- echo To print complete documentation: COPY *.DOC PRN and press ENTER key.
- echo To display documentation, type README and press the ENTER key.
- echo To load RealView software, type REALTY and press the ENTER key.
- echo You may ignore the error message, if any, appearing on the next line.
- del install2.bat > nul
-